home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / vbcc / machines / amiga68k / libsrc / stdio / putchar.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-10-20  |  88 b   |  10 lines

  1. #include <stdio.h>
  2.  
  3. #undef putchar
  4.  
  5. int putchar(int c)
  6. {
  7.     return(putc(c,stdout));
  8. }
  9.  
  10.